drop table if exists "PharmacyProductDetail";
--------
Create table "PharmacyProductDetail"("PharmacyProductDetailId" serial primary key,
									"PharmacyProductRackId" int references "PharmacyProductRack"("PharmacyProductRackId"),
									"ROQ" int,"ROL" int,"PharmacyProductId" int references "PharmacyProduct"("PharmacyProductId"),
									"PharmacyStockId" int references "PharmacyStock"("PharmacyStockId"),
									"PharmacyRetailStockId" int references "PharmacyRetailStock"("PharmacyRetailStockId"),
									"PharmacyDepartmentId" int references "PharmacyDepartment"("PharmacyDepartmentId"),
									"CreatedBy" int references "Account"("AccountId"),
								    "CreatedDate" timestamp without time zone 
									);
----------